By default, the Meridian Enterprise Server websites communicate unsecured using the HTTP protocol. The system can use HTTPS by modifying one setting in the web.config file of the website.
To configure HTTPS:
<binding name="Binding_ES" closeTimeout="00:10:00" openTimeout="00:01:00" receiveTimeout="00:50:00" sendTimeout="00:50:00" messageEncoding="Text" maxReceivedMessageSize="2147483647">
<!--
HTTPS: security mode = Transport
HTTP: security mode = TransportCredentialOnly
-->
<security mode="TransportCredentialOnly">
<transport clientCredentialType="Windows" realm=""/>
</security>
</binding>
Related concepts
Related tasks
Configuring the application pool account